home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 124 / cd-rom 124.iso / edu / tuxmath / tuxmathscrabble / asymptopia / Maneuvers.py < prev    next >
Encoding:
Python Source  |  2003-07-26  |  1.4 KB  |  46 lines

  1. """
  2. /***************************************************************************
  3.  
  4.     Author             :Charles B. Cosse 
  5.     
  6.     Email            :ccosse@asymptopia.com
  7.                     
  8.                     
  9.     Copyright        :(C) 2002,2003 Asymptopia Software.
  10.     
  11.  ***************************************************************************/
  12. /***************************************************************************
  13.                     
  14.                     Maneuvers.py
  15.                     
  16.     
  17.  ***************************************************************************/
  18.  
  19. /***************************************************************************
  20.  *                                                                         *
  21.  *   This program is free software; you can redistribute it and/or modify  *
  22.  *   it under the terms of the GNU General Public License as published by  *
  23.  *   the Free Software Foundation; either version 2 of the License, or     *
  24.  *   (at your option) any later version. (Please note that if you use this *
  25.  *   code you must give credit by including the Author and Copyright       *
  26.  *   info at the top of this file).                                        *
  27.  ***************************************************************************/
  28.  
  29. """
  30.  
  31. class Maneuvers:
  32.     def __init__(self):
  33.         self.sequences={}
  34.         self.maneuvers={}
  35.         
  36.  
  37.     def getSequencesPyld(self):
  38.         return(self.sequences)
  39.     
  40.     def getManeuversPyld(self):
  41.         return(self.maneuvers)    
  42.     
  43.     def getManeuverNames(self):
  44.         maneuver_names=[]
  45.         return(maneuver_names)
  46.